码迷,mamicode.com
首页 >  
搜索关键字:"upstream"    ( 928个结果
yocto编译时报错"fatal: the '--set-upstream' option is no longer supported. Please use '--track' or '--set-upstream-to' instead"如何处理?
答: 替换--set-upstream为--set-upstream-to, 示例如下: a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -326,7 +326,7 @@ class Git(FetchMeth ...
分类:其他好文   时间:2020-05-28 21:42:59    阅读次数:372
nginx反向代理和alias的使用
一反向代理和alias配置 1 配置文件 [root@bogon nginx]# egrep -v "^[[:space:]]+#" conf/default.conf upstream tomcat { server 172.17.0.5:8080; } server { listen 80; s ...
分类:其他好文   时间:2020-05-27 12:12:25    阅读次数:120
nginx负载均衡的五种算法
一五种算法 1 round robin(默认) 轮询方式,依次将请求分配到各个后台服务器中,默认的负载均衡方式。 适用于后台机器性能一致的情况。 挂掉的机器可以自动从服务列表中剔除。 upstream backendserver { server 192.168.0.14:80 max_fails= ...
分类:编程语言   时间:2020-05-27 12:08:54    阅读次数:62
nginx优化之request_time 和upstream_response_time差别
在nginx配置中,经常看到request_time,upstream_response_time,有些时间并不是很清楚二者的差异,感觉差不多,其实: 本质是requst_time是从client发起请求到返回结果的时间;而upstream_response_time是nginx建立连接到返回结果的 ...
分类:其他好文   时间:2020-05-24 09:50:12    阅读次数:70
解决git提交:Please enter a commit message to explain why this merge is necessary
使用git提交代码在本次提交时已有其他人提交过代码,报如下信息: Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream i ...
分类:其他好文   时间:2020-05-22 19:03:28    阅读次数:114
linux下部署uwsgi+nginx+django2.0
1.安装uwsgi pip install uwsgi 2.在项目根目录新建uwsgi.ini,内容如下: [uwsgi] socket = 0.0.0.0:8001 socket-time = 900 chdir = /home/xxx/project/djangoPro module = dja ...
分类:系统相关   时间:2020-05-22 11:23:34    阅读次数:62
BurpSuite + Xray 被动扫描配置
BurpSuite手动测试配合xray做被动扫描,实际使用结果还不错,主要扫描出的漏洞集中在敏感信息泄露和xss一类的。 0x00、BurpSuite的代理配置: 首先需要配置BurpSuite转发ip与端口: 流程:1、选择 user options 2、选择Upstream Proxy Syst ...
分类:其他好文   时间:2020-05-21 11:42:13    阅读次数:1222
2020系统综合实践(四)
使用Docker compose实现Tomcat+Nginx负载均衡 nginx反向代理原理 nginx代理tomcat集群,代理2个以上tomcat; 拉取tomcat镜像 docker compose.yml default.conf tomcat1/index.html tomcat2和tom ...
分类:其他好文   时间:2020-05-19 00:19:45    阅读次数:69
nginx_access_log的格式设置
log_format <NAME> <Strin­­­g>; 关键字 格式标签 日志格式 关键字:其中关键字error_log不能改变 格式标签:格式标签是给一套日志格式设置一个独特的名字 日志格式:给日志设置格式 log_format main '$remote_addr - $remote_us ...
分类:数据库   时间:2020-05-18 23:08:03    阅读次数:136
死磕nginx系列--使用nginx做负载均衡
死磕nginx系列--使用nginx做负载均衡 使用nginx做负载均衡的两大模块: upstream 定义负载节点池。 location 模块 进行URL匹配。 proxy模块 发送请求给upstream定义的节点池。 upstream模块解读 nginx 的负载均衡功能依赖于 ngx_http_ ...
分类:其他好文   时间:2020-05-18 19:07:18    阅读次数:66
928条   上一页 1 ... 4 5 6 7 8 ... 93 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!